home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / idioms.lha / idioms / 8-3a.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  324b  |  16 lines

  1. /* Copyright (c) 1992 by AT&T Bell Laboratories. */
  2. /* Advanced C++ Programming Styles and Idioms */
  3. /* James O. Coplien */
  4. /* All rights reserved. */
  5.  
  6. int main() {
  7.    Employee *ted =
  8.        new Employee(
  9.          "ted", 2823763108
  10.        );
  11.    // . . . .
  12.    ted->logTimeWorked(8);
  13.    ted->printPaycheck();
  14.    delete ted;
  15. }
  16.